/* TOP SECTION STYLES */
.why-sap-intro {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    align-items: center;
}

.intro-text { flex: 1.5; }
.intro-text h1 { font-size: 40px; color: var(--sap-blue); margin-bottom: 15px; font-weight: 800; }
.intro-text p { font-size: 18px; color: #555; line-height: 1.6; }

.mastery-card {
    flex: 1;
    background: #004a99;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 74, 153, 0.1);
}

.mastery-card h3 { color: #f0ab00; margin-bottom: 15px; font-size: 22px; }

/* 6-POINT GRID SECTION */
.choose-us-section {
    padding: 50px 0 100px;
    border-top: 1px solid #eee;
}

.section-title {
    font-size: 30px;
    color: var(--sap-blue);
    margin-bottom: 45px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns as per reference */
    gap: 40px 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #eff6ff; /* Soft blue icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 26px;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 17px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .why-sap-intro { flex-direction: column; text-align: center; }
    .features-grid { grid-template-columns: 1fr; }
}